header {
    display: flex;

    flex-direction: row;

    background-color: white;
    height: 192px;
    margin-top: 42px;
    margin-left: 50px;

    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;

    padding: 0 23px;
}

/* par défaut, seuls les coins à gauche sont arrondis, full-round permet d'arrondir aussi à droite */
header.full-round {
    padding: 0;

    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    /* par défaut l'élément est étendu jusqu'au bout, on vire cette propriété  */

    max-width: fit-content;
}

header img.logo {
    max-height: 192px;
    max-width: 192px;
}

.time-meteo, .time, .meteo-item, .temperature-group, .info {
    display: flex;
}

.time-meteo, .temperature-group {
    flex-direction: row;
}

.time, .meteo-item, .info {
    flex-direction: column;
}

.time-meteo .time, .info > span {
    font-family: 'Bebas Neue';
}

.time-meteo {
    margin-top: 36px;
    margin-bottom: 36px;
}

.time {
    width: 300px;
    text-align: right;
    font-size: 37px;
    justify-content: center;
    margin-left: 50px;
    margin-right: 30px;
}

.meteo-item {
    box-sizing: border-box;
    width: 180px;
    padding: 5px 30px;
    border-left: 5px solid #69c0bb;
    text-align: center;
    font-size: 16px;
    justify-content: center;

    font-family: 'Sansation';
    font-weight: bold;
}

.meteo-item:last-child {
    border-right: 5px solid #69c0bb;
}

.meteo-item img {
    height: 60px;
    width: 60px;

    /* overflow: hidden; */
    transform: scale(1.5);

    margin: 0 auto;
}

.temperature-group {
    justify-content: space-around;
}

.info {
    margin-left: 30px;
    margin-top: 29px;
    margin-bottom: 29px;
    
    justify-content: center;
}

.info > span {
    font-size: 30px;
}

.info > p {
    margin: 0;
    font-size: 20px;
    font-family: 'Sansation';
}

